翻訳と辞書
Words near each other
・ Factorization of polynomials
・ Factorization of polynomials over finite fields
・ Factorization of the mean
・ Factorization system
・ Factors affecting permeability of soils
・ Factors associated with being a victim of sexual violence
・ Factors of polymer weathering
・ Factors of production
・ Factors of the Seven
・ Factorum ac dictorum memorabilium libri IX
・ Factory
・ Factory (Band of Horses song)
・ Factory (band)
・ Factory (Buckethead album)
・ Factory (disambiguation)
Factory (object-oriented programming)
・ Factory (openSUSE)
・ Factory (trading post)
・ Factory (TV series)
・ Factory 2-U
・ Factory 81
・ Factory Acts
・ Factory Air
・ Factory and Workshop Act 1895
・ Factory automation infrastructure
・ Factory Benelux discography
・ Factory Berlin
・ Factory Bluffs
・ Factory Boss
・ Factory Bridge


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Factory (object-oriented programming) : ウィキペディア英語版
Factory (object-oriented programming)

In object-oriented programming (OOP), a factory is an object for creating other objects – formally a factory is simply an object that returns an object from some method call, which is assumed to be "new". More broadly, a subroutine that returns a "new" object may be referred to as a "factory", as in ''factory method'' or ''factory function''. This is a basic concept in OOP, and forms the basis for a number of related software design patterns.
==Motivation==
In class-based programming, a factory is an abstraction of a constructor of a class, while in prototype-based programming a factory is an abstraction of a prototype object. A constructor is concrete in that it creates objects as instances of a single class, and by a specified process (class instantiation), while a factory can create objects by instantiating various classes, or by using other allocation schemes such as an object pool. A prototype object is concrete in that it is used to create objects by being cloned, while a factory can create objects by cloning various prototypes, or by other allocation schemes.
Factories may be invoked in various ways, most often a method call (a ''factory method''), sometimes by being called as a function if the factory is a function object (a ''factory function''). In some languages factories are generalizations of constructors, meaning constructors are themselves factories and these are invoked in the same way. In other languages factories and constructors are invoked differently, for example using the keyword new to invoke constructors but an ordinary method call to invoke factories; in these languages factories are an abstraction of constructors but not strictly a generalization, as constructors are not themselves factories.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Factory (object-oriented programming)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.